The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 113
META.json 11
META.yml 11
Makefile.PL 10
bin/cpanm 37
lib/App/cpanminus.pm 11
6 files changed (This is a version diff) 823
@@ -1,10 +1,22 @@
 See http://github.com/miyagawa/cpanminus/ for the latest development.
 
+1.4007 Tue May 17 10:51:18 PDT 2011
+   [Incompatible Changes]
+      - Remove LWP from Makefile.PL dependencies, since due to the split it brings in many
+        dependencies such as HTTP::Daemon and HTTP::Parser (which requires a C compiler).
+        HTTP::Tiny is embedded as a last resort anyway, and if Makefile.PL is executed via
+        some CPAN client (CPAN.pm, CPANPLUS or cpanminus) it means your client is already
+        configured to be able to fetch files over HTTP.
+
+1.4006 Mon May 16 10:02:45 PDT 2011
+   [Bug Fixes]
+      - Proper fix for the -l option installing the same modules
+
 1.4005 Wed May 11 12:05:49 PDT 2011
    [Bug Fixes]
       - -l should now correctly locate installed modules to skip reinstalling. Regression in 1.4004
       - Ignore Module::CoreList loading errors with -L on perl < 5.8.9
-      - Fixed --prompt in combination with --quest RT:66602
+      - Fixed --prompt in combination with --quiet RT:66602
       - Fixed a broken Bundle:: module installation
 
 1.4004 Thu Mar 10 10:04:28 PST 2011
@@ -39,5 +39,5 @@
       }
    },
    "release_status" : "stable",
-   "version" : "1.4005"
+   "version" : "1.4007"
 }
@@ -21,4 +21,4 @@ requires:
   ExtUtils::Install: 1.46
   ExtUtils::MakeMaker: 6.31
   Module::Build: 0.36
-version: 1.4005
+version: 1.4007
@@ -44,7 +44,6 @@ WriteMakefile(
         'Module::Build' => 0.36,
         'ExtUtils::MakeMaker' => 6.31,
         'ExtUtils::Install' => 1.46,
-        ($ENV{PERL5_CPAN_IS_RUNNING} || $ENV{PERL5_CPANPLUS_IS_RUNNING}) ? (LWP => 5.828) : (),
     },
     LICENSE => 'perl',
     EXE_FILES => [ 'bin/cpanm' ],
@@ -18,7 +18,7 @@ my %fatpacked;
 
 $fatpacked{"App/cpanminus.pm"} = <<'APP_CPANMINUS';
   package App::cpanminus;
-  our $VERSION = "1.4005";
+  our $VERSION = "1.4007";
   
   =head1 NAME
   
@@ -314,7 +314,7 @@ $fatpacked{"App/cpanminus/script.pm"} = <<'APP_CPANMINUS_SCRIPT';
   use constant WIN32 => $^O eq 'MSWin32';
   use constant SUNOS => $^O eq 'solaris';
   
-  our $VERSION = "1.4005";
+  our $VERSION = "1.4007";
   
   my $quote = WIN32 ? q/"/ : q/'/;
   
@@ -809,7 +809,11 @@ $fatpacked{"App/cpanminus/script.pm"} = <<'APP_CPANMINUS_SCRIPT';
               $self->_dump_inc(\@inc, \@INC);
               $self->{search_inc} = [ @inc ];
           } else {
-              $self->{search_inc} = [ $base, @INC ];
+              $self->{search_inc} = [
+                  local::lib->install_base_arch_path($base),
+                  local::lib->install_base_perl_path($base),
+                  @INC,
+              ];
           }
           $self->_setup_local_lib_env($base);
       }
@@ -1,5 +1,5 @@
 package App::cpanminus;
-our $VERSION = "1.4005";
+our $VERSION = "1.4007";
 
 =head1 NAME